central_composite_design_size Subroutine

public pure subroutine central_composite_design_size(nfactors, alpha_type, m, n)

Computes the size of a central composite design.

A CCD consists of: - 2^k factorial points - 2*k axial (star) points - n_center center points

Arguments

Type IntentOptional Attributes Name
integer(kind=int32), intent(in) :: nfactors

Number of factors.

character(len=*), intent(in), optional :: alpha_type

Type of CCD: "orthogonal" (default), "rotatable", or "uniform".

integer(kind=int32), intent(out) :: m

Number of runs (rows).

integer(kind=int32), intent(out) :: n

Number of factors (columns).